Source for file config.php

Documentation is available at config.php

  1. <?php
  2.     $spellCheckerConfig array();
  3.  
  4.     // Spellchecker class use
  5.     // require_once("classes/TinyPspellShell.class.php"); // Command line pspell
  6.     require_once("classes/TinyGoogleSpell.class.php")// Google web service
  7.     // require_once("classes/TinyPspell.class.php"); // Internal PHP version
  8.  
  9.     // General settings
  10.     $spellCheckerConfig['enabled'true;
  11.  
  12.     // Default settings
  13.     $spellCheckerConfig['default.language''en';
  14.     $spellCheckerConfig['default.mode'PSPELL_FAST;
  15.  
  16.     // Normaly not required to configure
  17.     $spellCheckerConfig['default.spelling'"";
  18.     $spellCheckerConfig['default.jargon'"";
  19.     $spellCheckerConfig['default.encoding'"";
  20.  
  21.     // Pspell shell specific settings
  22.     $spellCheckerConfig['tinypspellshell.aspell''/usr/bin/aspell';
  23.     $spellCheckerConfig['tinypspellshell.tmp''/tmp';
  24. ?>

Documentation generated on Mon, 05 May 2008 16:18:06 +0400 by phpDocumentor 1.4.0